home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / composite_matte.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  49 lines

  1. /*
  2.  * Composite_Matte.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Composite tool.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base = 'Autofx_CompositeMatte_'
  19.  
  20. blendv = GETCLIP(base||'Blend')
  21. matter = GETCLIP(base||'MatteR')
  22. matteg = GETCLIP(base||'MatteG')
  23. matteb = GETCLIP(base||'MatteB')
  24. close  = GETCLIP(base||'Close')
  25.  
  26. IF blendv = '' THEN blendv = 50
  27. IF matter = '' THEN matter = 0
  28. IF matteg = '' THEN matteg = 0
  29. IF matteb = '' THEN matteb = 0
  30. IF close  = '' THEN close = 1
  31.  
  32. Gadget.1 = 'INTEGER 150  5  50 14 "Blend %:"' blendv
  33. Gadget.2 = 'INTEGER 150 20  50 14 "Matte R:"' matter
  34. Gadget.3 = 'INTEGER 225 20  50 14 "G:"' matteg
  35. Gadget.4 = 'INTEGER 300 20  50 14 "B:"' matteb
  36. Gadget.5 = 'INTEGER 150 35  50 14 "Closeness:"' close
  37. Gadget.6 = 'END'
  38.  
  39. NewComplexRequest '"Composite Matte Options"' Gadget 380 54
  40. IF rc ~= 0 THEN EXIT rc
  41.  
  42. CALL GETCLIP(base||'Blend', result.1)
  43. CALL GETCLIP(base||'MatteR', result.2)
  44. CALL GETCLIP(base||'MatteG', result.3)
  45. CALL GETCLIP(base||'MatteB', result.4)
  46. CALL GETCLIP(base||'Close', result.5)
  47.  
  48. EXIT
  49.